home *** CD-ROM | disk | FTP | other *** search
- /*
- File: Windows.h
-
- Contains: Window Manager Interfaces.
-
- Version: Technology: System 7.5
- Release: Universal Interfaces 3.0.1
-
- Copyright: © 1984-1997 by Apple Computer, Inc., all rights reserved
-
- Bugs?: Please include the the file and version information (from above) with
- the problem description. Developers belonging to one of the Apple
- developer programs can submit bug reports to:
-
- devsupport@apple.com
-
- */
- /*
- NOTE
-
- The file Windows.h has been renamed to "MacWindows.h" to prevent a collision
- with the Microsoft Windows(tm) header file "Windows.h". MacOS only developers may
- continue to use #include <Windows.h>. Developers doing cross-platform work where
- Windows.h also exists should change their sources to use #include <MacWindows.h>
- */
-
- #ifndef __CONDITIONALMACROS__
- #include <ConditionalMacros.h>
- #endif
-
- #if TARGET_OS_MAC
- #ifndef __MACWINDOWS__
- #include <MacWindows.h>
- #endif
- #else
- /*
- If you get here, your development environment is messed up.
- This file is for MacOS development only.
- */
- #error This file (Windows.h) is for developing MacOS software only!
- #endif /* TARGET_OS_MAC */
-
-